home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / net / amitcp2_x_gcc.lha / RCS.RCSfiles / dummy.c,v < prev    next >
Text File  |  1994-01-11  |  634b  |  57 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     jasegler:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    94.01.11.18.55.42;    author jasegler;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * dummy.c --- unimplemented netdb functions 
  26.  *
  27.  * Created      : Sat Mar 20 10:06:38 1993 ppessi
  28.  * Last modified: Sat Mar 20 10:15:21 1993 ppessi
  29.  *
  30.  */
  31.  
  32. #include <netdb.h>
  33. #if !__SASC
  34. #define NULL ((void *) 0)
  35. #endif
  36. struct hostent *
  37. gethostent (void)
  38. {
  39.   return NULL;
  40. }
  41. struct netent *
  42. getnetent (void)
  43. {
  44.   return NULL;
  45. }
  46. struct servent *
  47. getservent (void)
  48. {
  49.   return NULL;
  50. }
  51. struct protoent *
  52. getprotoent (void)
  53. {
  54.   return NULL;
  55. }
  56. @
  57.